home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / The World of Computer Software.iso / uc31.zip / SETPIXEL.SCR < prev    next >
Text File  |  1992-12-28  |  117b  |  8 lines

  1. ; setpixel.scr draw pixels on screen
  2. i=0
  3. while (i<640)
  4.   gdisetpixel(i,i/3,255,255,255)
  5.   i=i+4
  6. endwhile
  7. exit
  8.